@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg: #0e0b0c;
  --fg: #ead9c8;
  --muted: #ddcbc2;
  --ink: #f2e2d1;
  --surface: #1b1215;
  --surface-alt: #2a1b20;
  --accent: #d5a000;
  --accent-strong: #700900;
  --accent-warm: #aaaa00;
  --shadow-soft: 0 24px 46px rgba(0, 0, 0, 0.28);
  --shadow-medium: 0 36px 70px rgba(0, 0, 0, 0.42);
  --border-subtle: rgba(246, 239, 234, 0.14);
  --border-soft: rgba(246, 239, 234, 0.24);
  --z-scrim: 9000;
  --z-header: 10000;
  --z-drawer: 11000;
  --header-height: 116px;
  --header-expanded-height: 122px;
  --header-offset: var(--header-expanded-height);
  --brand-max-height: 88px;
  --radius-card: 12px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (min-width: 1280px) {
  html {
    font-size: 18px;
  }
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(213, 160, 0, 0.14), transparent 32%),
    radial-gradient(circle at 90% 0%, rgba(112, 9, 0, 0.34), transparent 40%),
    var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: var(--header-offset, var(--header-expanded-height));
}

body.home-page {
  background: linear-gradient(180deg, #280907 0%, #1e0b0a 40%, #150d0d 72%, #0f0b0c 100%);
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}

a:hover,
a:focus-visible {
  border-bottom-color: rgba(213, 160, 0, 0.68);
  color: var(--ink);
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 .6em;
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.18;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 6vw, 3.9rem);
}

h2 {
  font-size: clamp(1.85rem, 4.4vw, 2.85rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.8rem);
}

p {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 2.2vw, 1.08rem);
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

li {
  font-size: clamp(1rem, 2.2vw, 1.05rem);
  margin: .36rem 0;
}

.muted {
  color: var(--muted);
}

.upper {
  text-transform: uppercase;
  letter-spacing: .18em;
}

.center {
  text-align: center;
}

.small {
  font-size: .9rem;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

.pad {
  padding: clamp(2.8rem, 7vw, 5.2rem) 0;
}

.page-heading {
  margin-bottom: clamp(1.8rem, 5vw, 3rem);
}

.page-heading.center {
  text-align: center;
}

.section-title {
  margin-bottom: .4rem;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.lead {
  font-size: clamp(1.08rem, 2.7vw, 1.38rem);
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .86rem;
  border-radius: 8px;
  background: rgba(213, 160, 0, 0.15);
  border: 1px solid rgba(213, 160, 0, 0.46);
  font-size: .87rem;
  color: var(--ink);
}

.list {
  margin: 0;
  padding-left: 1.25rem;
}

.kicker {
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: .78rem;
}
